@import url('css21.css');

body {
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #5B707A;
}

body p, body a {
  font-size: 1rem;
  line-height: 1.5;
}

@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  src: local('Merriweather Regular'), local('Merriweather-Regular'),
       url('../font/merriweather-regular.woff2') format('woff2'),
       url('../font/merriweather-regular.woff') format('woff');
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: #3D4F3D;
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

h1,
.h1 {
  font-size: 1.75rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

h2,
.h2 {
  font-size: 1.5rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

h3,
.h3,
h4,
.h4,
h5,
.h5 {
  line-height: 1.65;
}

@media (min-width: 768px) {

  h1, .h1 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }

  h2, .h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }

}

@media (min-width: 992px) {

  h1, .h1{
    font-size: 2.25em;
    margin-bottom: 0.5em;
  }

  h2, .h2 {
    font-size: 2em;
    margin-bottom: 1.5em;
  }

}

img:-moz-loading {
  visibility: hidden;
}

.hr-dashed {
  border-width: 1px;
  border-style: dashed;
  border-color: #A3362B;
}


.sans-subtitle {
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 1.125em;
  font-weight: 600;
}

.hidden {
  display: none;
}

.min-height-65vh {
  min-height: 65vh;
}

.navbar {
  box-shadow: 0px 0px 0px 2px #F0F2F2;
}

.btn {
  font-weight: 600;
  font-size: 1.125em;
  padding: 0.5em 2em;
}

.bg-secondary {
  background-color: #F0F2F2 !important;
}

.bg-gray {
  background-color: #ced5d8;
}

.bg-blue {
  background-color:rgba(11, 108, 157, 0.25);
}

.bg-white {
  background-color:#fff;
}

.text-green {
  color: #009634;
}

.text-red {
  color: #A3362B;
}

.link-blue {
  color: #0B6C9D;
}

.text-large {
  font-size: 1.2em;
}

.text-mid {
  font-size: 1.15em;
  line-height: 1.7em;
  padding-bottom: 0.5em;
}

.header-large {
  font-size: 2.75em;
}

.border-red {
  border-width: 2px 3px 3px 2px;
  border-style: dashed solid solid dashed;
  border-color: #A3362B;
}

.badge-red {
  background-color: #A3362B!important;
  color: #fff;
  line-height: 1.5;
}

.highlight-green {
  background-color: rgba(0, 232, 80, 0.5);
  padding: 0.75rem 1.25rem 0.75rem 1.25rem;
  border-radius: 2rem 1rem 2rem 1rem;
}

.highlight-red {
  background-color: rgba(236,64,46,0.9);
  color: #fff!important;
  padding: 0.5rem 1.0rem 0.5rem 1.0rem;
  border-radius: 2rem 1rem 2rem 1rem;
}

.highlight-yellow {
  background-color: rgba(255,239,73,0.7);
  padding: 0.75rem 1.25rem 0.75rem 1.25rem;
  border-radius: 2rem 1rem 2rem 1rem;
}

/* Unhappy writer style and animation */
.unhappy-laptop {
  position: absolute;
  right: 0px;
  bottom: 70px;
  z-index: -1;
}

.unhappy-blog {
  position: absolute;
  left: 60px;
  top: -60px;
  z-index: 0;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-name: bounce_blog;
  animation-name: bounce_blog;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.unhappy-tw-email {
  position: absolute;
  left: 150px;
  top: -100px;
  z-index: 1;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.unhappy-person {
  position: absolute;
  left: -5px;
  bottom: 0px;
  z-index: 2;
}

.unhappy-bubble {
  position: absolute;
  left: 120px;
  top: 100px;
  z-index: 3;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: rotation;
  animation-name: rotation;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes bounce_blog {
  0%   { -webkit-transform: translateY(0); transform: translateY(0); }
  50%  { -webkit-transform: translateY(-10px); transform: translateY(-10px); }
  100% { -webkit-transform: translateY(0); transform: translateY(0); }
}

@keyframes bounce_blog {
  0%   { -webkit-transform: translateY(0); transform: translateY(0); }
  50%  { -webkit-transform: translateY(-10px); transform: translateY(-10px); }
  100% { -webkit-transform: translateY(0); transform: translateY(0); }
}

@-webkit-keyframes bounce {
  0%   { -webkit-transform: translateY(-10px); transform: translateY(-10px); }
  50%  { -webkit-transform: translateY(0); transform: translateY(0); }
  100% { -webkit-transform: translateY(-10px); transform: translateY(-10px); }
}

@keyframes bounce {
  0%   { -webkit-transform: translateY(-10px); transform: translateY(-10px); }
  50%  { -webkit-transform: translateY(0); transform: translateY(0); }
  100% { -webkit-transform: translateY(-10px); transform: translateY(-10px); }
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media (max-width: 1200px) {
  .unhappy-bubble {
  top: 170px;
  }
}

/* Happy writer style and animation */
.happy-laptop {
  position: absolute;
  left: -5px;
  bottom: 0px;
  z-index: 4;
}

.happy-hand1 {
  position: absolute;
  left: 125px;
  bottom: 10px;
  z-index: 1;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: bounce1;
  animation-name: bounce1;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.happy-hand2 {
  position: absolute;
  left: 175px;
  bottom: 25px;
  z-index: 1;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: bounce2;
  animation-name: bounce2;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

@-webkit-keyframes bounce1 {
  0%   { -webkit-transform: translateY(0); transform: translateY(0); }
  50%  { -webkit-transform: translateY(-30px); transform: translateY(-30px); }
  100% { -webkit-transform: translateY(0); transform: translateY(0); }
}

@keyframes bounce1 {
  0%   { -webkit-transform: translateY(0); transform: translateY(0); }
  50%  { -webkit-transform: translateY(-30px); transform: translateY(-30px); }
  100% { -webkit-transform: translateY(0); transform: translateY(0); }
}

@-webkit-keyframes bounce2 {
  0%   { -webkit-transform: translateY(-30px); transform: translateY(-30px); }
  50%  { -webkit-transform: translateY(0); transform: translateY(0); }
  100% { -webkit-transform: translateY(-30px); transform: translateY(-30px); }
}

@keyframes bounce2 {
  0%   { -webkit-transform: translateY(-30px); transform: translateY(-30px); }
  50%  { -webkit-transform: translateY(0); transform: translateY(0); }
  100% { -webkit-transform: translateY(-30px); transform: translateY(-30px); }
}

@media (max-width: 1200px) {
  .happy-hand1 {
  left: 100px;
  }
  .happy-hand2 {
  left: 150px;
  }
}

.kai-quote {
  font-style: italic;
  background-color: #F8FCFC;
  padding: 1.25em;
}

section,
footer {
  padding: 2.5em 0;
}

section:first-of-type {
  padding-top: 1.5em;
}

@media (min-width: 992px) {

  section:first-of-type {
    padding-top: 4em;
  }

  section,
  footer {
    padding: 4em 0;
  }
}

a,
a:hover {
  color: #0B6C9D;
}

a.nav-link {
  color: #0B6C9D !important;
  border-bottom: solid 1px transparent;
}

a.nav-link:hover,
a.nav-link.active {
  border-bottom: solid 1px #0B6C9D;
}

.navbar .nav-item {
  margin: 0 .8em;
}

.nav-pills .nav-link.active {
  background-color: #fff;
}

.feature-icon {
  max-width: 100px;
  max-height: 70px;
}

.carousel-indicators li {
  width: 60px;
  height: 3px;
  margin-right: 15px;
  margin-left: 15px;
  background-color: #009634;
}

.carousel-indicators li.active {
  background-color: #5B707A;
}

.carousel-item p {
  line-height: 180%;
}

.carousel-item h3 {
  margin-bottom: 30px;
  text-align: center;
  line-height: 160%;
}

.carousel-item {
  padding: 0px 20px;
}

.carousel-control-prev {
  left: -160px;
  height: 542.3px;
}

.carousel-control-next {
  right: -160px;
  height: 542.3px;
}

.bg-yellow {
  background-color: #FFEF49;
}

.photo {
  border-radius: 250px;
  max-height: 150px;
}

.sale-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  width: 90px;
}

/* Video */
.video a span {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%,-50%);
    width: 80px;
    height: 80px;
    display: block;
    border-radius: 40px;
    padding: 10px 10px 10px 25px;
    background: #009634;
    color: #fff;
    font-size: 250%;
}

@media (max-width: 992px) {
  .video a span {
    top: 25%;
    left: 50%;
  }
  .row .plan.col { width: 100%;flex-basis:100vw!important}

}

@media (max-width: 480px) {
  .video .special-play {
    top: 20%;
  }

  .video a span {
    top: 39%;
  }

}

/* Pricing */
.label {
  border-radius: .2rem;
  background-color: rgba(11, 108, 157, 0.25);
  width: 100%;
}

.card-body h2 {
  font-size: 1.5em;
}

.pricing hr {
  border-top: 3px solid #5B707A;
  width: 35%;
}

.price {
  font-family: 'Merriweather', serif;
  color: #3D4F3D;
  line-height: 1;
}

.price .value {
  font-size: 2em;
}

.price.old-price {
  position: relative;
}

.price.old-price:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 25%;
  border-bottom: 7px solid rgba(240, 40, 40, 0.7);
  width: 50%;
  transform: rotate(-12deg);
}

.price.old-price .value {
  font-size: 2em;
}

span#newsroom-price {
  position: relative;
}

span#newsroom-price:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: -5%;
  border-bottom: 7px solid rgba(240, 40, 40, 0.7);
  width: 110%;
  transform: rotate(-12deg);
}

.bg-greenish {
  background-color: rgba(0, 150, 52, 0.1);
}

.bg-greenish-solid {
  background-color: #e5f4ea;
}

.money-back h3 {
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 1.125em;
  font-weight: 600;
}

.money-back-badge {
  width: 160px;
}

.text-disabled {
  color: rgba(91, 112, 122, 0.25);
}

.bg-disabled {
  background-color: rgba(240, 242, 242, 0.3);
}

.border-disabled {
  border-top: 3px solid rgba(91, 112, 122, 0.25) !important;
}
  @media (max-width: 991px) {
    .money-back-badge {
      vertical-align: middle;
    }
  }

#article-success-alert {
  background: none;
  border: none;
  color: #5B707A;
}

.bg-map {
  content: '';
  background: url("../image/niteo_map.png");
  background-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* Collapse */

#module {
  width: 90%;
}

#module a.collapsed:after {
  content: '+ Show More';
}

#module a:not(.collapsed):after {
  content: '- Show Less';
}

#module #collapseExample.collapse:not(.show) {
  display: block;
  /* height = lineheight * no of lines to display */
  height: 4.5em;
  overflow: hidden;
}

#module #collapseExample.collapsing {
  height: 4.5em;
}
.good-list card { margin-top: 10px;}
.good-list .card-body { padding: 5px;}
.good-list h5.card-title { font-size: 16px;line-height: 20px}
.good-list .card-text { font-size: 14px;line-height: 25px;color: #888888}
.good-list .btn { padding: 8px 16px;}
.breadcrumb { background-color: #ffFFFF!important;font-size: 16px;}
.good-list a { text-decoration: none}
.good-list a:hover .btn { text-decoration: none;color: #ffFFFF}
.good-list .card-body .mt-0 { vertical-align:bottom;}
.good-list .price { color: #F40;font-weight: 700;font-family: arial;padding-right: 5px;font-size: 20px;line-height: 25px; }
.good-list .subprice { color: #F40;font-family: arial;padding-right: 5px;font-size: 14px;line-height: 20px; }
.good-list .proxy_price { color: #888888;font-weight: normal;font-family: arial;padding-left: 5px;font-size: 12px; }
.good-list .selled { float: right; color: #888;display: block;font-size: 12px;line-height: 26px; }
.product_variant.quantity button,.product_variant.quantity a {
  border: 0;
  font-size: 16px;
  background: #40A944;
  height: 42px;
  text-transform: capitalize;
  min-width: 270px;
  margin: 5px;
  color: #fff
}
.product_variant.quantity a.preview {
  background-image: -webkit-gradient(linear,left top,right top,from(#f5cb22),to(#f6a623));
  background-image: -webkit-linear-gradient(left,#f5cb22,#f6a623);
  background-image: linear-gradient(
    90deg
    ,#f5cb22,#f6a623);
}
.product_info_button ul li a {
  display: block;
  float: left;
  text-transform: capitalize;
  font-size: 20px;
  color: #555;
  font-weight: 500;
  margin-right: 35px;
  line-height: 26px;
  position: relative;
}
.product_d_right h1 img { height: 60px;}
.product_d_right .download {

}
.product_d_right .download_file { margin: 3px}
.product_d_right .download_file .mlabel,.product_d_right .download_file a { font-size: 16px;color:  #009634;font-weight: bold}
.product_d_right .download input{
  margin: 5px;
  width: 50%;
}
.btn-green {
  background-color:#009634 ;
  color: #ffFFFF;
}
a.btn-green:hover {
  color: #ffFFFF;
}
.wrapper__list__article .border_section {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.wrapper__list__article .border_section:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 5px;
  background: #009634;
  z-index: 1;
}
.wrapper__list__article .border_section:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #eee;
}
.blog-tags {
  padding: 15px 0;
  display: inline-block;
}
.blog-tags .list-inline {
  margin-bottom: 0;
}
.list-inline {
  padding-left: 0;
  list-style: none;
}
.list-inline-item {
  display: inline-block;
}
.blog-tags .list-inline .list-inline-item a {
  display: block;
  margin-bottom: 5px;
  padding: 7px 10px;
  border: 1px solid #ddd;
  margin-right: 2px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}
.card__post-list {
  display: flex;
  position: relative;
}
.image-sm {
  display: block;
  height: 100%;
  flex: 0 0 28%;
  width: 28%;
  max-width: 100%;
  margin: 0;
  background-size: cover;
}
.image-sm img {
  position: relative;
  -o-object-fit: cover;
  object-fit: cover;
  height: 80px;
  max-width: 100%;
  width: 100%;
}
.card__post .card__post__body .card__post__content {
  padding: 20px;
  left: 0;
  bottom: 0;
  width: 100%;
  display: inline-block;
  padding: 0 8px 0 10px !important;
}
.card__post .card__post__body .card__post__content .card__post__author-info {
  font-size: 14px;
  font-weight: 700;
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}
.card__post-list .card__post__content .card__post__title h6 {
  text-transform: capitalize;
}
.card__post-list .card__post__content .card__post__title h6 a {
  color: #000;
  text-shadow: none;
  font-weight: 700 !important;
  font-size: 14px;
}
.product_d_right h1 {font-size: 25px;}
.product_info_content p img { display: block;margin: 0px auto;max-width: 900px;}
.price_box .current_price .plabel { color: #999;font-size: 12px;text-align: left;float: left;width: 69px;}
.price_box .current_price .price {    vertical-align: middle;font-size: 30px;color: #FF0036;font-weight: bolder;font-family: Arial;-webkit-font-smoothing: antialiased;}
.price_box .current_price .subprice { vertical-align: middle;font-size: 20px;color: #FF0036;font-family: Arial;-webkit-font-smoothing: antialiased;}
.price_box { font-size: 18px;line-height: 25px;}
.price_box i { color: #888888;font-size: 14px;font-style: normal}
.comment-area { display: none}
.comment-area h5 {margin-bottom: 28px}
.comment-area .media {background-color: white;box-shadow: 0 0 32px 0 rgba(241, 241, 241, 0.57);margin-bottom: 30px;padding: 20px 35px;align-items: center;border-radius: 8px}
.comment-area .media.media-last {margin-top: 60px;position: relative}
.comment-area .media.media-last:before {content: "";position: absolute;width: 100%;height: 1px;background: #efefef;top: -30px;left: 0}
.comment-area .media.nesting {margin-left: 70px;background-color: #f7f7f7}
.comment-area .media .thumb {margin-bottom: 0}
.comment-area .media .media-body {margin-left: 26px}
.comment-area .media .media-body .btn {padding: 0;height: 27px;line-height: 26px}
.comment-area .media .media-body h6 {font-weight: 600}
.comment-area .media .media-body p {margin-bottom: 0}
.comment-form {margin-top: 60px;position: relative;padding-top: 43px}
.comment-form:before {content: "";position: absolute;width: 100%;height: 1px;background: #efefef;top: 0;left: 0}
.comment-form .single-input-wrap {margin-bottom: 13px;border: 0}
.comment-form .single-input-wrap textarea {border: 1px solid #cfcfcf;border-radius: 6px;background-color: #fafafa}
.comment-form .single-input-wrap .form-control {border: 1px solid #cfcfcf;border-radius: 6px;background-color: #fafafa}
.comment-form .comment-check {margin-top: 12px;margin-bottom: 25px}
.comment-form .comment-check {margin-top: 12px;margin-bottom: 25px}
.comment-form .btn {border-radius: 5px}
.card__post h5 a{ font-size: 22px;}
.dev-stat p { text-align: left;font-size: 12px;}
.pagination  { text-align: center}
.pagination  a {padding: 5px 10px;border-radius: 5px;border:#dddddd solid 1px; margin: 5px;}
 .product_variant.quantity a.go-buy {background-image: -webkit-gradient(linear,left top,right top,from(#ff4348),to(#ee172b));
  background-image: -webkit-linear-gradient(left,#ff4348,#ee172b);
  background-image: linear-gradient(
    90deg
    ,#ff4348,#ee172b);}
.layui-layer-btn .layui-layer-btn0 { color: #ffFFFF!important;}
.blog-menu { background: #EEEEEE;padding: 10px;}
.blog-menu ul li a { line-height: 30px;text-indent: 2em}
.blog-menu ul li.active a { font-weight: bold}
.blog-menu ul { margin-left: 1em;}
.entry-content h2 {margin-bottom: 0.5em; font-size: 18px;}
.entry-content h3 {margin-bottom: 0.5em; font-size: 16px;}
.entry-content p img { max-width: 800px;margin: 5px auto;display: block;width: 80%}